home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / RCS / chown.man,v < prev    next >
Text File  |  1990-05-02  |  3KB  |  158 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @@;
  7.  
  8.  
  9. 1.2
  10. date     90.05.01.22.57.54;  author shirriff;  state Exp;
  11. branches ;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     90.02.28.23.28.16;  author shirriff;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @@
  22.  
  23.  
  24. 1.2
  25. log
  26. @Added reference to fchown to chown man page so it would be indexed.
  27. @
  28. text
  29. @.\" Copyright (c) 1980 Regents of the University of California.
  30. .\" All rights reserved.  The Berkeley software License Agreement
  31. .\" specifies the terms and conditions for redistribution.
  32. .\"
  33. .\"    @@(#)chown.2    6.6 (Berkeley) 5/22/86
  34. .\"
  35. .TH CHOWN 2 "May 22, 1986"
  36. .UC 4
  37. .SH NAME
  38. chown, fchown \- change owner and group of a file
  39. .SH SYNOPSIS
  40. .nf
  41. .ft B
  42. chown(path, owner, group)
  43. char *path;
  44. int owner, group;
  45. .PP
  46. .ft B
  47. fchown(fd, owner, group)
  48. int fd, owner, group;
  49. .fi
  50. .SH DESCRIPTION
  51. The file
  52. that is named by \fIpath\fP or referenced by \fIfd\fP
  53. has its
  54. .I owner
  55. and 
  56. .I group
  57. changed as specified.
  58. Only the super-user
  59. may change the owner of the file,
  60. because if users were able to give files away,
  61. they could defeat the file-space accounting procedures.
  62. The owner of the file may change the group
  63. to a group of which he is a member.
  64. .PP
  65. On some systems,
  66. .I chown
  67. clears the set-user-id and set-group-id bits
  68. on the file
  69. to prevent accidental creation of
  70. set-user-id and set-group-id programs.
  71. .PP
  72. .I Fchown
  73. is particularly useful when used in conjunction
  74. with the file locking primitives (see
  75. .IR flock (2)).
  76. .PP
  77. One of the owner or group id's
  78. may be left unchanged by specifying it as \-1.
  79. .PP
  80. If the final component of
  81. .I path
  82. is a symbolic link,
  83. the ownership and group of the symbolic link is changed,
  84. not the ownership and group of the file or directory to which it points.
  85. .SH "RETURN VALUE
  86. Zero is returned if the operation was successful;
  87. \-1 is returned if an error occurs, with a more specific
  88. error code being placed in the global variable \fIerrno\fP.
  89. .SH "ERRORS
  90. .I Chown
  91. will fail and the file will be unchanged if:
  92. .TP 15
  93. [ENOTDIR]
  94. A component of the path prefix is not a directory.
  95. .TP 15
  96. [EINVAL]
  97. The pathname contains a character with the high-order bit set.
  98. .TP 15
  99. [ENAMETOOLONG]
  100. A component of a pathname exceeded 255 characters,
  101. or an entire path name exceeded 1023 characters.
  102. .TP 15
  103. [ENOENT]
  104. The named file does not exist.
  105. .TP 15
  106. [EACCES]
  107. Search permission is denied for a component of the path prefix.
  108. .TP 15
  109. [ELOOP]
  110. Too many symbolic links were encountered in translating the pathname.
  111. .TP 15
  112. [EPERM]
  113. The effective user ID is not the super-user.
  114. .TP 15
  115. [EROFS]
  116. The named file resides on a read-only file system.
  117. .TP 15
  118. [EFAULT]
  119. .I Path
  120. points outside the process's allocated address space.
  121. .TP 15
  122. [EIO]
  123. An I/O error occurred while reading from or writing to the file system.
  124. .PP
  125. .I Fchown
  126. will fail if:
  127. .TP 15
  128. [EBADF]
  129. .I Fd
  130. does not refer to a valid descriptor.
  131. .TP 15
  132. [EINVAL]
  133. .I Fd
  134. refers to a socket, not a file.
  135. .TP 15
  136. [EPERM]
  137. The effective user ID is not the super-user.
  138. .TP 15
  139. [EROFS]
  140. The named file resides on a read-only file system.
  141. .TP 15
  142. [EIO]
  143. An I/O error occurred while reading from or writing to the file system.
  144. .SH "SEE ALSO"
  145. chown(8), chgrp(1), chmod(2), flock(2)
  146. @
  147.  
  148.  
  149. 1.1
  150. log
  151. @Initial revision
  152. @
  153. text
  154. @d10 1
  155. a10 1
  156. chown \- change owner and group of a file
  157. @
  158.